home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / telecomm / quickcis.arc / LOGIN.TXT next >
Text File  |  1990-04-12  |  2KB  |  87 lines

  1.            Examples for using QuickCIS' LOGIN.SCR file
  2.  
  3.  
  4. The following groups of text are sample login scripts for three 
  5. commonly used carriers which connect to CompuServe.  You should be 
  6. able to duplicate these into a file named LOGIN.SCR, and get a 
  7. successful connection.  
  8.  
  9. You must checkmark LOGIN.SCR in the View Config dialog, for the 
  10. script file to be loaded and interpreted.
  11.  
  12. Do NOT add any blank lines to the beginning or end of the file.
  13. The last line of the file IS IGNORED, so fill it with a timer.  
  14. Each used line should have a single digit command (0-3), a space, 
  15. and one or more additional characters, depending on the command 
  16. number used.  DO make sure that your last line has a Return 
  17. character at its end.
  18.  
  19. Commands:
  20.  
  21. 0 - send the following text
  22. 1 - wait for the appearance of the following text
  23. 2 - wait xx seconds
  24. 3 - send the ASCII character in the following text (0-255)
  25.  
  26.  
  27. -----------------------------------
  28.  
  29. Tymnet:
  30.  
  31. 2 3
  32. 3 65
  33. 1 : 
  34. 0 CIS02
  35.  
  36.  
  37. Explanation - line one waits 3 seconds after CONNECT.  Line 2 
  38. sends ASCII 65 ("A").  Line 3 waits for ": " to appear.  Line 4 
  39. sends the string "CIS02".  The result should be the appearance of 
  40. the CIS "User ID:" string, which QuickCIS will notice and respond 
  41. to.
  42.  
  43. ------------------------------------
  44.  
  45. Telenet:
  46.  
  47. 2 4
  48. 3 13
  49. 3 32
  50. 3 13
  51. 1 TERMINAL
  52. 0 D1
  53. 1 @
  54. 0 C 202202
  55.  
  56.  
  57. Explanation - Line 1 waits 4 seconds. Line 2 sends ASCII 13 
  58. (Return). Line 3 sends ASCII 32 (space). Line 4 sends ASCII 13 
  59. again.  Line 5 waits for the appearance of "TERMINAL".  Line 6 
  60. sends "D1". Line 7 waits for "@". Line 8 sends "C 202202".  The 
  61. result should be the appearance of the CIS User ID prompt.  
  62. QuickCIS will automatically respond.
  63.  
  64. -------------------------------------
  65.  
  66. Datapac:
  67.  
  68. 2 2
  69. 0 ..
  70. 1 DATAPAC
  71. 2 1
  72. 0 P 29400138
  73. 1 Host Name:
  74. 2 1
  75. 0 CIS
  76.  
  77.  
  78. Explanation - Line 1 waits 2 seconds. Line 2 sends "..". Line 3 
  79. waits for the appearance of "DATAPAC". Line 4 waits 1 second. Line 
  80. 5 sends "P 29400138". Line 6 waits for "Host Name:". Line 7 waits 
  81. 1 second.  Line 8 sends "CIS".  The result should be the 
  82. appearance of the CIS prompt User ID, which QuickCIS will respond 
  83. to. 
  84.  
  85. -------------------------------------
  86.  
  87.